home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / DOCUMENTPROXY.DTML < prev    next >
Encoding:
Text File  |  2000-05-11  |  1.6 KB  |  55 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <HTML lang="en">
  3. <HEAD>
  4. <TITLE>Edit</TITLE>
  5. </HEAD>
  6. <BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555">
  7. <dtml-var manage_tabs>
  8. <P>
  9. Proxy roles allow you to control the access that a DTML document or
  10. method has. Proxy roles replace the roles of the user who is viewing
  11. the document or method.  This can be used to both expand and limit
  12. access to resources.
  13. </P>
  14.  
  15. <P>Use the form below to select which roles this DTML document
  16. or Method will have.
  17. </P>
  18.  
  19.   <FORM ACTION="manage_proxy" METHOD="POST">
  20.     <TABLE CELLSPACING="2">
  21.       <TR>
  22.     <TH ALIGN="LEFT" VALIGN="TOP">Id</TH>
  23.     <TD ALIGN="LEFT" VALIGN="TOP"><dtml-var id></TD>
  24.       </TR>
  25.       <TR>
  26.     <TH ALIGN="LEFT" VALIGN="TOP"><EM>Title</EM></TH>
  27.     <TD ALIGN="LEFT" VALIGN="TOP"><dtml-var title></TD>
  28.       </TR>
  29.       <TR>
  30.     <TH ALIGN="LEFT" VALIGN="TOP">Proxy Roles</TH>
  31.         <TD VALIGN="TOP">
  32.            <SELECT NAME="roles:list" SIZE="7" MULTIPLE>
  33.              <dtml-in valid_roles>
  34.                 <dtml-if expr="_vars['sequence-item'] != 'Shared'">
  35.                    <OPTION
  36.                    <dtml-if expr="manage_haveProxy(_vars['sequence-item'])">
  37.                       SELECTED</dtml-if>
  38.                    ><dtml-var sequence-item></OPTION>
  39.                 </dtml-if>
  40.              </dtml-in valid_roles>
  41.            </SELECT>
  42.         </TD>
  43.       </TR>
  44.       <TR>
  45.     <TD></TD>
  46.     <TD>
  47.     <INPUT NAME=SUBMIT TYPE="SUBMIT" VALUE="Change">
  48.     </TD>
  49.       </TR>
  50.     </TABLE>
  51.   </FORM>
  52. </BODY>
  53. </HTML>
  54.  
  55.